home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 4
/
Amiga Tools 4.iso
/
tools
/
emulator-tools
/
frodo
/
src
/
debug.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1995-10-06
|
187 b
|
17 lines
#ifndef DEBUG_H
#define DEBUG_H
#define DEBUG_DETAIL 1
extern void kprintf(UBYTE *fmt,...);
#define bug kprintf
#if DEBUG_DETAIL
#define D(x) (x);
#else
#define D(x) ;
#endif
#endif